A section of a program designed to swap the values of two variables [closed]

Posted by gary on Stack Overflow See other posts from Stack Overflow or by gary
Published on 2010-05-04T20:06:41Z Indexed on 2010/05/04 20:38 UTC
Read the original article Hit count: 221

Line

 1.var numberOne;
 2.var numberTwo;
 3.numberOne = 9;
 4.numberTwo = 1;
 5.numberOne = numberTwo;
 6.numberTwo = numberOne;

For each of the lines in the program above, give the values held by numberOne and numberTwo at that point in the program. You do not need to write any JavaScript.

Help me pls. Thank you.

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about homework